int a = 30;
int b = 40;
line(a, 0, a, height);
line(b, 0, b, height);
strokeWeight(4);
// The result of a calculation can be used as input to a function
line(b-a, 0, b-a, height);
